home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
050
/
qwrite11.arc
/
QDEMO.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1986-10-30
|
660b
|
22 lines
{$I qwik11.inc}
var i,j,k,l: byte;
Str: String[75];
begin
Str:= ' Qwrite Screen Utilities ';
Qfill (1,1,112,' ',2000); { Clear Screen }
for i:=1 to 25 do
begin
j:= random (15);
k:= random (60);
for l:=1 to 8 do
Qfill (1+j+l,1+k,1+j+k,#178,20);
end;
QwriteV ( 3,27, 47, Str);
Qwrite ( 4,32, 47,' Version 1.1 ');
Qwrite (12, 3, 31,'Qwrite will write with new attributes that you specify direct to the screen.');
Qwrite (15, 3, -1,'Qwrite will also use existing attributes when you do not even know or care.');
Qattr (15,24,199,8); { highlight the word 'existing' }
GotoRC (21, 1);
end.